home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ WinNT NTLMv2 2.xpl < prev    next >
Text File  |  2001-04-26  |  2KB  |  54 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="7"
  3. "COUNT"="3"
  4. "UIPATH"="Network\Security\NTLM v2 Authentication"
  5. "NAME"="Server Options"
  6. "VERSION"="1.18"
  7. "OSVERSION"="01000"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Restore original setting"
  10. "TEXT 2"="Level 4: Do not accept LM authentication (Win 3.x, 95, 98)"
  11. "TEXT 3"="Level 5: *ONLY* accept NTLM v2 authentication"
  12. "WARNING"="Setting this option to an incorrect value can prevent you from connecting to your network! Only change it if you are 100% sure what you are doing!"
  13. "DESCRIPTION 1"="Some more information can be found in the "Client options" plug-in, or by viewing the Microsoft KB article Q147706 (http://support.microsoft.com/support/)."
  14. "DESCRIPTION 2"=""Level 4" will prevent Windows 3.x or 95/98 users from connecting to this machine because LM authentication will be disabled, but Windows NT clients can still access it using NTLM or NTLM v2."
  15. "DESCRIPTION 3"=""Level 5" is the most secure setting, but will only work if SP4 is installed on both this server and the Windows NT clients connecting it."
  16. "AUTHOR"="Xteq Systems"
  17. "CONTACTURL"="http://www.xteq.com"
  18. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  19. "COMMENT 1"="For more information, please see Microsoft KB Q147706"
  20. "COMMENT 2"="Thanks to Chris [CGMT@flashmail.com] for the "non-NT but not disabled" bug notice."
  21.  
  22.  
  23. sPath="HKLM\System\CurrentControlSet\Control\LSA\LMCompatibilityLevel"
  24.  
  25.  
  26. Sub Plugin_Initialize 
  27.     i=RegReadValue(sPath)
  28.  
  29.     if i=4 then SetUIElement 2,true
  30.     if i=5 then SetUIElement 3,true
  31. End Sub
  32.  
  33. Sub Plugin_CheckData(ElementIndex)
  34. End Sub
  35.  
  36. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  37.  i=0
  38.  
  39.  if GetUiElement(2)=true then i=4
  40.  if GetUiElement(3)=true then i=5
  41.  
  42.  if i>0 then 
  43.     Call RegWriteValue(sPath,i,2) 
  44.  else
  45.     i=RegReadValue(sPath)
  46.     if IsEmpty(i)=false then
  47.        Call RegDeleteValue(sPath)
  48.     end if
  49.  end if
  50. End Sub
  51.  
  52. Sub Plugin_Terminate 
  53. End Sub
  54.